17. Exercise: IntelliJ

Exercise: IntelliJ

Up until this point, we've worked with very simple scripts. We have been able to write these in a simple text editor, and then compile and run them using the terminal CLI. But as we start to work on more complex applications, we will want a more sophisticated development environment. So from now on, we'll be doing all of the exercises in the free Community edition of the IntelliJ IDEA. If you didn't download and install this back in the previous lesson, you should go ahead and do it now!

ND079 C1 L1 A13 JAVA Walkthrough

IntelliJ

Task Description:

Before going any further, make sure you've tried out all of the following steps in IntelliJ:

Task List:

Task Feedback:

Nice work!

Solution

package code;

public class FirstClass {

  public static void main(String[] args){
    System.out.println("My first Java Application");
  }

}